From c544d29d6f53d04bc7136c473a0d235182f95982 Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Fri, 2 Sep 2005 07:55:45 +0000 Subject: [PATCH] Make the check script log to /tmp instead of the working directory. This allows us to install from a read-only file system (such as a cdrom). Signed-off-by: Anthony Liguori --- tools/check/chk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/check/chk b/tools/check/chk index 0ebce4799e..c9b7adead5 100755 --- a/tools/check/chk +++ b/tools/check/chk @@ -17,14 +17,14 @@ export PATH=${PATH}:/sbin:/usr/sbin case $1 in build) check="CHECK-BUILD" - info=".chkbuild" + info="/tmp/xen.chkbuild" ;; install) check="CHECK-INSTALL" - info=".chkinstall" + info="/tmp/xen.chkinstall" ;; clean) - rm -f .chkbuild .chkinstall + rm -f /tmp/xen.chkbuild /tmp/xen.chkinstall exit 0 ;; *) -- 2.30.2